.banner {
    position: relative;
}

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 38px 4.15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s;
}

.header h1 {
    margin: 0;
}

.header ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.header ul li {
    padding: 15px 0;
    margin: 0 20px;
    position: relative;
}

.header ul li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: #d80414;
    display: block;
    transition: .4s;
    opacity: 0;
}

.header ul li.active:after,
.header ul li:hover:after {
    width: 100%;
    opacity: 1;
}

.header ul li:nth-last-child(2) {
    margin-right: 25px;
}

.header ul li a {
    color: #fff;
    font-size: 16px;
}

.header ul i {
    color: #fff;
    cursor: pointer;
    margin-left: 25px;
    position: relative;
    font-size: 24px;
}

.header ul i:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    width: 1px;
    height: 65%;
    background: #fff;
    display: block;
    transform: translateY(-50%);
}

.header form {
    display: flex;
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #ddd;
}

.header form button {
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 20px;
    padding: 0 !important;
}

.headerfixed form button {
    color: #333;
}

.header form div {
    width: 300px;
    position: absolute;
    top: 50%;
    right: 20px;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 1);
    display: none;
    transform: translateY(-50%);
    margin-right: 10px;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.header form input {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #999;
}

.header form input::-webkit-input-placeholder {
    color: #121212;
}

.header form input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #121212;
}

.header form input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #121212;
}

.header form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #121212;
}

.swiper-container1 {
    width: 100%;
    height: 100vh;
}

.swiper-container1 .swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-container1 .swiper-slide div:nth-child(1) {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: banner infinite 10s;
}

.swiper-container1 .swiper-slide div:nth-child(2) {
    width: 100%;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.swiper-container1 .swiper-slide div p:nth-child(2) {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 1.1;
}

.swiper-container1 .swiper-slide div p:nth-child(1) {
    font-size: 120px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.swiper-num1 {
    position: absolute;
    width: auto;
    left: initial;
    right: 4.15%;
    bottom: 45px;
    color: #fff;
    font-size: 20px;
    z-index: 10;
    font-family: shu;
}

.swiper-num1 span:nth-child(1) {
    font-size: 40px;
    margin-right: 5px;
}

.swiper-button-next1,
.swiper-button-prev1 {
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.5s;
    color: #fff;
}

.banner:hover .swiper-button-next1 {
    opacity: 1;
    visibility: visible;
    right: 30px;
}

.banner:hover .swiper-button-prev1 {
    opacity: 1;
    visibility: visible;
    left: 30px;
}


.mouse-scroll {
    width: 24px;
    height: 40px;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius: 12px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    margin: auto;
    z-index: 10;
    cursor: pointer;
}

.mouse-scroll::before {
    content: '';
    width: 2px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    top: 6px;
    left: 9px;
    animation: mouseScroll 3s infinite;
}

#scr {
    width: auto;
    position: absolute;
    right: calc(4.15% + 64px);
    bottom: 150px;
    z-index: 4;
}

#scr>b {
    position: absolute;
    top: 120%;
    width: 1px;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
}

#scr>b:nth-of-type(1):after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    background-color: #fff;
    bottom: 100%;
    left: 0;
    animation: rise1 1.6s linear infinite;
}

#scr>b:nth-of-type(2):after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    background-color: #fff;
    bottom: 100%;
    left: 0;
    animation: rise2 1.6s linear infinite;
}

#scr>b:nth-of-type(3):after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    background-color: #fff;
    bottom: 100%;
    left: 0;
    animation: rise3 1.6s linear infinite;
}

#scr>b:nth-of-type(1) {
    left: -25px;
    height: 15px;
}

#scr>b:nth-of-type(2) {
    right: 0;
    height: 40px;
}

#scr>b:nth-of-type(3) {
    right: -25px;
    height: 26px;
}

@keyframes rise1 {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translateY(30px);
    }
}

@keyframes rise2 {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translateY(80px);
    }
}

@keyframes rise3 {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translateY(56px);
    }
}


@keyframes mouseScroll {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(16px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes banner {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.padd {
    padding: 120px 0;
}
.pade {
    padding: 60px 0;
}
.news,.dj{
    display: flex;
    flex-wrap: wrap;
}

.news .left,.dj .left {
    width: 50%;
}

.news .right,.dj .right {
    width: 50%;
    padding-left: 50px;
}

.news .bottom,.dj .bottom {
    width: 100%;
    margin-top: 60px;
    position: relative;
}

.news .bottom div ,.dj .bottom div{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    padding-left: 40px;
}

.news .bottom div:before ,.dj .bottom div:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 80px;
    height: 3px;
    background: #fff;
    display: block;
}

.news .bottom img,.dj .bottom img {
    width: 100%;
    border-radius: 8px;
}

.news .right img {
    width: 100%;
    max-height: 390px;
}

.dj h1{
    background: url(../img/djgz.png) no-repeat left top;
    line-height: 128px;
    font-size: 36px;
    font-weight: bold;
    position: relative;

}

.dj h1 a{ color: #666666;}

.dj h1 a:hover{ color: #d80414;}

.dj h1:after{
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 120px;
    height: 8px;
    border-radius: 8px;
    background: #d80414;
    display: block;
}

.dj ul li{
    width: 100%;
    float: left;
    border: 1px solid #efefef;
    background: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
}
.dj ul li:hover{
    background: #b70916;
    color: #fff;
}
.dj_newsleft{
    width: 20%;
    float: left;
}
.dj_newsright{
    width: 78%;
    float: right;
    font-size: 14px;
    color: #999;
}
.dj_newsright:hover{
    color: #fff;
}
.dj_title{ 
    width: 100%;
    float: left;
    display: block;
    font-size: 18px;
    color: #666;
    font-weight: bold;
    padding: 10px;
}
.dj ul li:hover .dj_title{
    color: #fff;
}
.dj ul li img{
    width: 100%;
    height: auto;

}

    
.dj ul li h4{
    
    font-size: 18px;
    color: #666666;
    
}
.swiper-container2 {
    margin-bottom: 20px;
}

.news-tab {
    display: flex;
    margin-bottom: 5px;
}

.news-tab a {
    width: calc((100% - 20px) / 3);
    background: #f1f3f5 !important;
    color: #666666;
    font-size: 18px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    transition: .4s;
    cursor: pointer;
}

.news-tab a:hover,
.news-tab .active {
    color: #fff;
    background: #d80414 !important;
}

.news-tab a:last-child {
    margin-right: 0;
}

.news-top {
    position: relative;
    padding: 30px 0;
    border-bottom: 2px solid #cccccc;
    display: block;
    padding-right: 15%;
}

.news-top:hover p:nth-child(1) {
    color: #d80414;
}

.news-top p:nth-child(1) {
    font-size: 20px;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: bold;
    transition: .4s;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-top p:nth-child(2) {
    font-size: 14px;
    color: #999999;
    line-height: 1.1;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-top span {
    position: absolute;
    top: 50%;
    right: 0;
    color: #999999;
    font-size: 14px;
    transform: translateY(-50%);
}

.news-main ul li a span:nth-child(2) {
    color: #999999;
    font-size: 14px;
}

.news-main ul {
    padding-top: 34px;
    margin-bottom: 0;
}

.news-main ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 34px;
}

.news-main ul li:last-child {
    margin-bottom: 0;
}

.news-main ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    background: #d80414;
    display: block;
    transition: .4s;
}

.news-main ul li a {
    display: flex;
    justify-content: space-between;
    color: #333333;
    font-size: 16px;
    line-height: 1.1;
    transition: .4s;
}

.news-main ul li:hover a {
    color: #d80414;
}

.news-main ul li:hover:after {
    left: 5px;
}

.news-main ul li a span:nth-child(1) {
    max-width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.swiper-container2 img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.swiper-container2 .swiper-slide {
    position: relative;
}

.swiper-container2 .swiper-slide a {
    width: 100%;
    height: 100%;
    display: block;
}

.swiper-container2 .swiper-slide a:hover p {
    background: rgba(255, 255, 255, 0.85);
    color: #d80414;
}

.swiper-container2 .swiper-slide p {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 15px;
    color: #fff;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, 0.6);
    transition: .4s;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 150px;
}

.swiper-pagination2 {
    width: 100px !important;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    left: auto !important;
    right: 20px !important;
    bottom: 0 !important;
}

.swiper-pagination2 span:last-child {
    margin-right: 0;
}

.swiper-pagination2 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 0;
    opacity: 1;
    background: #a8a6a2;
}

.swiper-pagination2 .swiper-pagination-bullet-active {
    background: #d80414;
}

.right div:nth-child(2) img {
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.finance {
    background-color: #f1f3f5;
    background-image: url("../images/index-bg.png");
    background-position: right bottom;
    background-repeat: no-repeat;
}

.jr-tab {
    display: flex;
}

.jr-tab div {
    width: 33.33%;
    background: #fff;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.jr-tab div:nth-child(2) {
    border-right: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
}

.jr-tab div i {
    font-size: 60px;
    color: #d80414;
    margin-bottom: 10px;
    display: block;
    transition: .4s;
}

.jr-tab div p {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 0;
    color: #333333;
}

.jr-tab div:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    display: block;
    background: #d80414;
    transition: .4s;
}

.jr-tab .active:after {
    width: 100%;
}

.jr-tab div:hover i {
    transform: rotateY(180deg);
}

.jr-main div {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.jr-main div a p n {
    transition: .4s;
}

.jr-main div:hover img {
    transform: scale(1.1, 1.1);
}

.jr-main div:hover a p n {
    margin-left: 10px;
}

.jr-main div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 75px 60px;
    color: #fff;
    font-size: 16px;
}

.jr-main div img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: .4s;
}

.jr-main div a p:nth-child(1) {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
}

.jr-main div a p:nth-child(2) {
    width: 45%;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
}

.culture .container {
    display: flex;
}

.culture .left {
    width: calc((100% - 40px) / 2);
    position: relative;
    margin-right: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.culture .right {
    width: calc((100% - 40px) / 2);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.culture img {
    width: 100%;
    border-radius: 8px;
    transition: .4s;
}

.culture .left div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 75px 50px 50px;
    color: #fff;
}

.culture .left:hover img,
.culture .right:hover img {
    transform: scale(1.1, 1.1);
}

.culture .left div p:nth-child(1) {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
}

.culture .left div p {
    font-size: 16px;
    line-height: 36px;
}

.culture .right div {
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
    margin-bottom: 40px;
    padding: 60px 40px;
    border-radius: 5px;
    position: relative;
    transition: .4s;
}

.culture .right div a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.culture .right div:nth-child(2n) {
    margin-right: 0;
}

.culture .right div:nth-child(2)~div {
    margin-bottom: 0;
}

.culture .right div:nth-child(1) {
    background: #d80414;
    border-bottom-right-radius: 0;
}

.culture .right div:nth-child(2) {
    border-bottom-left-radius: 0;
    background-image: url("../img/c1.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.culture .right div:nth-child(3) {
    border-top-right-radius: 0;
    background-image: url("../img/c2.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.culture .right div:nth-child(4) {
    background: #333333;
    border-top-left-radius: 0;
}

.culture .right div:hover {
    background-size: 110% 110%;
}

.culture .right div:hover i {
    color: rgba(255, 255, 255, 0.8);
}

.culture .right div i {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 80px;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.5);
    transition: .4s;
}

.culture .right div p {
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.1;
}

.culture .right div p span {
    font-weight: initial;
    font-size: 16px;
    display: block;
    text-transform: uppercase;
    margin-top: 10px;
}

.footer {
    background: #b70916;
    padding: 80px 0 70px;
    border-top: 8px solid #1a293c;
}

.di1500 {
    display: flex;
}

.di1500 .left {
    width: 52.65%;
    padding-right: 180px;
}

.di1500 .center {
    width: 35%;
    display: flex;
    align-items: flex-start;
}

.di1500 .right {
    width: 20%;
    padding-left: 1%;
}

.di1500 .right1 {
    width: 20%;
    padding: 0 1%;
}

.di1500 .center ul li:first-child {
    width: 100% !important;
    margin-bottom: 35px;
}

.di1500 .center ul li:first-child a {
    font-size: 16px;
    line-height: 1.1;
    color: #fff;
}

.di1500 .center ul {
    margin-bottom: 0;
}

.di1500 .center ul li {
    margin-bottom: 15px;
    position: relative;
}

/* .di1500 .center ul li:last-child, .di1500 .center ul:nth-child(2) li:nth-last-child(2) {
    margin-bottom: 0;
} */

.di1500 .center ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    display: block;
    transform: translateY(-50%);
    transition: .4s;
}

.di1500 .center ul li a {
    font-size: 14px;
    color: #fff;
    line-height: 1.1;
    transition: .4s;
    /* display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.di1500 .center ul:nth-child(3) li:nth-child(2) {
    margin-bottom: 35px;
}

.di1500 .center ul:nth-child(3) li:nth-child(4) a {
    display: block;
    overflow: visible;
    line-height: 28px;
}

.di1500 .center ul:nth-child(1) {
    width: 50%;
}

.di1500 .center ul:nth-child(2) {
    width: 50%;
    /* display: flex;
    flex-wrap: wrap; */
}

.di1500 .center ul:nth-child(2) li {
    width: 100%;
}

.di1500 .center ul:nth-child(3) {
    width: 52%;
    padding-right: 1%;
}

.di1500 .left img {
    margin-bottom: 40px;
}

.di1500 .left p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 35px;
}

.di1500 .left a {
    width: 118px;
    height: 48px;
    line-height: 45px;
    text-align: center;
    background: #fff;
    color: #d80414;
    font-size: 14px;
    border: 1px solid #fff;
    display: block;
    transition: .4s;
}

.di1500 .left a:hover {
    background: rgba(0, 0, 0, 0);
    color: #fff;
}

.di1500 .center ul li:hover a {
    color: #ffb4ba;
    padding-left: 15px;
}

.di1500 .center ul li:hover:after {
    width: 10px;
}

.di1500 .right1>p,
.di1500 .right>p {
    font-size: 16px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 35px;
}

.di1500 .right div:nth-child(2),
.di1500 .right1 div {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 15px;
}

.di1500 .right div:nth-child(2) p:nth-child(2),
.di1500 .right1 div:nth-of-type(1) p,
.di1500 .center ul:nth-child(3) li:nth-child(2) a {
    font-size: 24px;
    line-height: 1.1;
    font-family: shu;
    margin-bottom: 0;
}


.di1500 .right div:nth-child(3),
.di1500 .right div:nth-child(4),
.di1500 .right div:nth-child(5) {
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.di1500 .right div:nth-child(3) p br {
    display: none;
}

.di1500 .right div:nth-child(3) p {
    line-height: 28px;
}

.di1500 .right div:nth-child(3) p:last-child {
    margin-bottom: 0;
}

.di1500 .right div:nth-child(4) {
    display: flex;
}

.di1500 .right div:nth-child(4) a {
    color: #d80414;
    background: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    margin-right: 10px;
    border-radius: 50%;
    transition: .4s;
    border: 1px solid #fff;
}

.di1500 .right div:nth-child(4) a:nth-child(2) {
    position: relative;
    cursor: pointer;
}

.di1500 .right div:nth-child(4) a:nth-child(2):after {
    content: '';
    position: absolute;
    top: -175px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    transition: .4s;
}

.di1500 .right div:nth-child(4) a:nth-child(2):hover:after {
    opacity: 1;
    z-index: 1;
}

.di1500 .right div:nth-child(4) a:hover {
    background: #b70916;
    color: #fff;
}

.footer2 {
    background: #b70916;
    border-top: 1px solid #c53a45;
}

.footer2 .container {
    line-height: 90px;
    text-align: center;
    font-size: 14px;
    color: #fff;
   
}

.footer2 .container a {
    font-size: 14px;
    color: #fff;
    transition: .4s;
}

.footer2 .container span:hover a,
.footer2 .container span:hover,
.footer2 .container a:nth-child(1):hover {
    color: #fff;
}

.footer2 .container a:nth-child(1) {
    margin-left: 5px;
    transition: .4s;
}

.footer2 .container span:last-child {
    position: absolute;
    right: 15px;
    transition: .4s;
}

.header2 {
    position: relative;
    background-color: #fff;
    padding: 20px 4.15%;
}

.headerfixed {
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 20px 4.15%;
    z-index: 99999;
}

.headerfixed ul li a,
.header2 ul li a {
    color: #333333;
}

.headerfixed ul i,
.header2 ul i {
    color: #dd2533;
}

.headerfixed ul i:after,
.header2 ul i:after {
    background: #aaaaaa;
}

/*--------------------翻页---------------------*/
.fanye {
    display: flex;
}

.fanye a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #dddddd;
    display: block;
    text-align: center;
    margin: 0 5px;
    color: #aaaaaa;
    transition: .4s;
}

.fanye a:nth-child(1) {
    margin-left: 0;
}

.fanye a:nth-child(1),
.fanye a:nth-last-child(1) {
    width: 60px;
}

/*.fanye a:nth-child(1), .fanye a:nth-child(2), .fanye a:nth-last-child(1), .fanye a:nth-last-child(2) {
    width: 60px;
}*/

.fanye a:hover,
.fanye a.active {
    background: #d80414;
    color: #fff;
    border: 1px solid #d80414;
}

/*-----------------内页栏目-------------------*/
.news-inner-tab {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.news-inner-tab a {
    width: calc((100% - 6px) / 3);
    height: 100%;
    color: #fff;
    background: #d80414 !important;
    margin-right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.news-inner-tab a:last-child {
    margin-right: 0;
}

.news-inner-tab a i {
    font-size: 40px;
    margin-right: 15px;
}

.news-inner-tab a div p:nth-child(1) {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.news-inner-tab a div p:nth-child(2) {
    font-size: 12px;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: uppercase;
}

.news-inner-tab a:hover,
.news-inner-tab a.active {
    color: #fff;
    background: #000 !important;
}

/*------------------内页banner---------------------*/
.news-banner {
    position: relative;
}

.news-banner img {
    width: 100%;
}

.news-banner div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.news-banner div p:nth-child(1) {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
    font-weight: bold;
}

.news-banner div p:nth-child(2) {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 8px
}

/*--------------------------------------*/
.show-title {
    position: relative;
    padding-left: 15px;
    margin-bottom: 25px;
}

.show-title p:nth-child(1) {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
}

.show-title p:nth-child(2) {
    font-size: 15px;
    line-height: 1.1;
    color: #999999;
    margin-bottom: 0;
}

.show-title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    display: block;
    background: #d80414;
}

.margin-none div img {
    margin-bottom: 0 !important;
}

.show-main2 p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #999999;
    line-height: 30px;
}

.show-main2 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.en-show4 .container:nth-child(2) {
    padding-top: 120px;
}

.en-show4 {
    padding-top: 0 !important;
}